home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Softshoe / Lisa's Mac Parts / Application / BackgroundApplication.cp < prev    next >
Text File  |  2000-06-23  |  586b  |  30 lines

  1. // BackgroundApplication.cp
  2.  
  3. #ifndef BackgroundApplication_h
  4. #include "BackgroundApplication.h"
  5. #endif
  6. #ifndef FontManagerUser_h
  7. #include "FontManagerUser.h"
  8. #endif
  9. #ifndef ProcessInfo_h
  10. #include "ProcessInfo.h"
  11. #endif
  12.  
  13. BackgroundApplication::BackgroundApplication( uint32 masterPointers,
  14.                                                              uint32 extraStackSpace )
  15.   : ApplicationBase( masterPointers, extraStackSpace )
  16.   {
  17.     Assert( ProcessInfo::Application().OnlyBackground() );
  18.     
  19.     FontManagerUser();
  20.   }
  21.  
  22. bool BackgroundApplication::CanCreate() const
  23.   {
  24.     return true;
  25.   }
  26.  
  27. void BackgroundApplication::Create()
  28.   {
  29.   }
  30.